From: Andrea Corallo Date: Fri, 24 May 2024 06:37:41 +0000 (+0200) Subject: * src/comp.c (check_comp_unit_relocs): Remove unneccesary double access. X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~14^2~18^2~1383 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=e650a04dc415467806b77d4b3801f9e6eeb9dfaf;p=emacs.git * src/comp.c (check_comp_unit_relocs): Remove unneccesary double access. --- diff --git a/src/comp.c b/src/comp.c index e8945df63ff..545a8046377 100644 --- a/src/comp.c +++ b/src/comp.c @@ -5302,7 +5302,7 @@ check_comp_unit_relocs (struct Lisp_Native_Comp_Unit *comp_u) if (NILP (Fgethash (x, comp_u->lambda_gc_guard_h, Qnil))) return false; } - else if (!EQ (data_imp_relocs[i], AREF (comp_u->data_impure_vec, i))) + else if (!EQ (x, AREF (comp_u->data_impure_vec, i))) return false; } return true;